home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJGOS106.ARJ / STAB.H < prev    next >
C/C++ Source or Header  |  1992-04-13  |  1KB  |  60 lines

  1. /* This is file STAB.H */
  2. /*
  3. ** Copyright (C) 1991 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
  4. **
  5. ** This file is distributed under the terms listed in the document
  6. ** "copying.dj", available from DJ Delorie at the address above.
  7. ** A copy of "copying.dj" should accompany this file; if not, a copy
  8. ** should be available from where this file was obtained.  This file
  9. ** may not be distributed without a verbatim copy of "copying.dj".
  10. **
  11. ** This file is distributed WITHOUT ANY WARRANTY; without even the implied
  12. ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. */
  14.  
  15. #ifndef __GNU_STAB__
  16.  
  17. /* Indicate the GNU stab.h is in use.  */
  18.  
  19. #define __GNU_STAB__
  20.  
  21. #define __define_stab(NAME, CODE, STRING) NAME=CODE,
  22.  
  23. enum __stab_debug_code
  24. {
  25. #include "stab.def"
  26. };
  27.  
  28. #undef __define_stab
  29.  
  30. #if !defined (N_UNDF)
  31. #define N_UNDF 0
  32. #endif
  33. #if !defined (N_ABS)
  34. #define N_ABS 2
  35. #endif
  36. #if !defined (N_TEXT)
  37. #define N_TEXT 4
  38. #endif
  39. #if !defined (N_DATA)
  40. #define N_DATA 6
  41. #endif
  42. #if !defined (N_BSS)
  43. #define N_BSS 8
  44. #endif
  45. #if !defined (N_FN)
  46. #define N_FN 15
  47. #endif
  48.  
  49. #if !defined (N_EXT)
  50. #define N_EXT 1
  51. #endif
  52. #if !defined (N_TYPE)
  53. #define N_TYPE 0x1e
  54. #endif
  55. #if !defined (N_STAB)
  56. #define N_STAB 0xe0
  57. #endif
  58.  
  59. #endif /* __GNU_STAB_ */
  60.